home *** CD-ROM | disk | FTP | other *** search
/ Acorn User: China / Acorn User China CD-ROM (UK) (Disc A) / Acorn User China CD-ROM (UK) (Disc A).bin / HENSA / MATHS / PLPLOT / PLPLOT.ZIP / plimp < prev    next >
Encoding:
Text File  |  1994-03-23  |  317 b   |  17 lines

  1. #!/bin/sh
  2.  
  3. cd ..
  4. if [ -f plplot.tar.gz ]; then
  5.         echo "Gunzip plplot.tar.gz"
  6.         gunzip plplot.tar.gz
  7.  
  8.         echo "untarring plplot.tar"
  9.         tar xvf plplot.tar
  10.  
  11.         echo "Updating .import"
  12.         touch plplot/.import
  13.  
  14. else
  15.         echo "No file plplot.tar.gz.  Do you know what you're doing?"
  16. fi
  17.